home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.4 KB | 51 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PRValLnk.cpp
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #include "FWFound.hpp"
-
- #ifndef PRVALLNK_H
- #include "PRValLnk.h"
- #endif
-
- //========================================================================================
- // Runtime informations
- //========================================================================================
-
- #ifdef FW_BUILD_MAC
- #pragma segment fwcollec
- #endif
-
- //========================================================================================
- // Class FW_CPrivValueLink - Implementation
- //========================================================================================
-
- //----------------------------------------------------------------------------------------
- // FW_CPrivValueLink::FW_CPrivValueLink
- //----------------------------------------------------------------------------------------
-
- FW_CPrivValueLink::FW_CPrivValueLink(void* value)
- {
- fValue = value;
- }
-
- //----------------------------------------------------------------------------------------
- // FW_CPrivValueLink::~FW_CPrivValueLink
- //----------------------------------------------------------------------------------------
-
- FW_CPrivValueLink::~FW_CPrivValueLink()
- {
- }
-
-
-
-
-
-
-
-